.ash-bg {
    background-color: #cbcbcb;
}

.header-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    margin-left: 6px;
    border-radius: 6px;
    /* Square with small radius */
    transition: 0.3s ease;
}


/* Icon Size */


/* .header-icons a i {
    font-size: 24px;
} */


/* Twitter X */

.x-icon {
    color: #000;
    border-color: #000;
    font-size: 22px;
}


/* .x-icon:hover {
    background: #000;
    color: #fff;
} */

.insta-icon {
    color: #E1306C;
    border-color: #E1306C;
    font-size: 26px;
}


/* .insta-icon:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    color: #fff;
} */


/* LinkedIn */

.linkedin-icon {
    color: #0A66C2;
    border-color: #0A66C2;
    font-size: 26px;
}


/* .linkedin-icon:hover {
    background: #0A66C2;
    color: #fff;
} */

.amenities-grid-section {
    padding: 70px 0px 70px;
    /* background-image: url(../Images/Home/amenities.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; */
}


/* Wrapper borders */


/* .amenities-grid {
      
} */

.image-badge {
    position: absolute;
    right: 0;
    top: 30%;
    background: #cbcbcb;
    padding: 15px;
    font-size: 16px;
    color: #25377f;
    font-weight: 600;
    border-radius: 10px 0 0 0;
}


/* Cell design (same style as your brand grid) */

.amenity-cell {
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 40px 10px;
    text-align: center;
    background: #ffffff;
    transition: 0.3s ease;
}


/* Icon styling */

.amenity-cell i {
    font-size: 36px;
    color: #2563eb;
    margin-bottom: 12px;
    display: block;
}


/* Heading styling */

.amenity-cell h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.amenity-cell {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    transition: 0.3s ease;
}


/* glow layer */

.amenity-cell::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(37, 99, 235, 0.15);
    /* blue glow */
    filter: blur(35px);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.4s ease;
    border-radius: 50%;
}


/* hover glow expands */

.amenity-cell:hover::before {
    width: 250px;
    height: 250px;
    opacity: 1;
}


/* icon hover */

.amenity-cell i {
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
    color: #2563eb;
}

.amenity-cell:hover i {
    color: #1e3a8a;
    transform: scale(1.05);
}


/* text always on top */

.amenity-cell h5 {
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
}

.amenity-cell img {
    width: 50px;
    margin-bottom: 10px;
}


/* Hover effect */

.amenity-cell:hover {
    background: #f8faff;
}


/* --- BORDER REMOVAL (Important) --- */


/* Remove LEFT border for 1st column (1,5) */

.amenity-cell:nth-child(4n+1) {
    border-left: none !important;
}


/* Remove TOP border for 1st row (1 to 4) */

.amenity-cell:nth-child(-n+4) {
    border-top: none !important;
}


/* Remove RIGHT border from last column (4,8) */

.amenity-cell:nth-child(4n) {
    border-right: none !important;
}


/* Remove BOTTOM border from last row (5–8) */

.amenity-cell:nth-last-child(-n+4) {
    border-bottom: none !important;
}


/* Wrapper */


/* Title Area */

.vt-sub-title {
    display: inline-block;
    padding: 6px 14px;
    background: #eef4ff;
    color: #3a6df0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.vt-main-title {
    font-size: 32px;
    font-weight: 700;
    margin: 12px 0;
    color: #121212;
}

.vt-main-desc {
    color: #ffffff !important;
    line-height: 1.7;
    margin-bottom: 25px;
}

.vt-watermark-features {
    margin-top: 20px;
}


/* Each Item */

.vt-water-item {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    /* background: #fff; */
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vt-water-item img {
    width: 60px;
}


/* Watermark Number */

.vt-water-item::before {
    content: attr(data-num);
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 40px;
    font-weight: 700;
    opacity: 0.2;
    color: #919191;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}


/* Headings */

.vt-water-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}


/* Paragraph */

.vt-water-item p {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
}

.vtp-faq-section {
    border-radius: 16px;
}

.vtp-faq-title {
    font-size: 24px;
    margin: 0 0 8px;
    color: #0f172a;
    text-align: start;
}

.vtp-faq-subtitle {
    margin: 0 0 18px;
    font-size: 14px;
    color: #6b7280;
    max-width: 620px;
}

.vtp-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vtp-faq-item {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    overflow: hidden;
}

.vtp-faq-question {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: #111827;
}

.vtp-faq-question span:first-child {
    flex: 1;
}

.vtp-faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    flex-shrink: 0;
}

.vtp-faq-item.active .vtp-faq-toggle {
    background: #25377f;
    color: #ffffff;
    border-color: #25377f;
}

.vtp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 16px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.vtp-faq-item.active .vtp-faq-answer {
    padding: 10px 16px 12px;
    max-height: max-content !important;
    text-align: start !important;
}

.vtp-faq-answer p {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 90%;
}

.new-gallery {
    padding-bottom: 70px;
}


/* About Us */

.hero-banner {
    position: relative;
    height: 75vh;
    overflow: hidden;
    margin-top: -25vh;
}


/* image inside banner */

.hero-banner .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* overlay dark layer */

.hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: end;
    justify-content: center;
}


/* text content */

.hero-banner .hero-content {
    text-align: center;
    color: #ffffff;
    padding: 20px 30px;
    max-width: 900px;
}

.hero-banner .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-banner .hero-slug {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ffffff;
}


/* responsive */

@media (max-width: 768px) {
    .hero-banner {
        height: 50vh;
        margin-top: 10vh;
    }
    .hero-banner .hero-title {
        font-size: 2.2rem;
    }
    .hero-banner .hero-slug {
        font-size: 1rem;
    }
    .aboutDiagonal {
        padding: 50px 12px !important;
    }
    .aboutDiagonal .aboutDiagonal-content h2 {
        font-size: 29px !important;
        font-weight: 700;
        color: #25377f;
        border-left: none !important;
        padding-left: 0px !important;
    }
}

.aboutDiagonal {
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(130deg, #f9fbff 55%, #ffffffd9 55%);
}

.aboutDiagonal .aboutDiagonal-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #25377f;
    border-left: 6px solid #25377f;
    padding-left: 15px;
}

.aboutDiagonal .tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #e8ecff;
    color: #4356ff;
    margin-bottom: 12px;
    font-size: 13px;
}

.aboutDiagonal .aboutDiagonal-image img {
    border-radius: 20px 0 0 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}


/* .aboutDiagonal .aboutDiagonal-stat {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.aboutDiagonal .aboutDiagonal-stat h3 {
    margin: 0;
    font-weight: 800;
} */


/* background section */


/* HEADER */

.prime-location {
    padding: 80px 0px;
}

.prime-location .prime-location-header p {
    max-width: 720px;
    margin: 0 auto;
}


/* IMAGE */

.prime-location .prime-location-center {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(0, 0, 0, .08);
}

.prime-location .prime-location-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* LISTS */

.prime-location .prime-location-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.prime-location .prime-location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f9ff;
    border: 1px solid #e3ecfb;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.95rem;
}


/* DOT */

.prime-location .prime-location-item i {
    border-radius: 50%;
    color: #0b5ed7;
    font-size: 20px;
}


/* background */

.why-choose-section {
    position: relative;
    background-image: url("../Images/About-us/front-desk.webp");
    background-size: cover;
    background-position: center;
}

.why-choose-section .why-choose-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 60px 0;
}

.why-choose-section .why-choose-container {
    color: #fff;
}


/* heading */

.section-heading {
    margin-bottom: 45px;
}

.section-heading h4 {
    color: #dddd;
}

.why-title {
    font-weight: 700;
    color: #fff;
}

.why-sub {
    max-width: 700px;
    margin: 10px auto 0;
    color: #fff;
}


/* card */

.why-choose-section .why-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    height: 100%;
}


/* keep image container stable */

.why-choose-section .why-card-image {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* make images look clean + sharp */

.why-choose-section .why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills space beautifully */
    border-radius: 14px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); */
}

.why-choose-section .why-card-content h4 {
    margin: 0 0 6px;
}

.why-choose-section .why-card-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #fff;
}

.testimonials-services-area {
    padding-top: 80px;
    background: #fff;
}

.testimonials-services-area .single-services-box {
    padding: 10px;
}

.testimonials-services-area .single-services-box a,
.testimonials-services-area .single-services-box .icon {
    display: none;
}

.warmShell-section {
    padding: 80px 0px;
}

.warmShell-section .benefitCard {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e6ecf4;
    transition: .35s ease;
    height: 100%;
}

.warmShell-section .benefitCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.warmShell-section .benefitIcon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #eaf1ff;
    color: #0b5ed7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 10px;
}

.warmShell-section .benefitCard h5 {
    font-weight: 700;
}


/* HEADER */

.warm-shell-overview .warm-shell-header h3 {
    color: #0b5ed7;
}


/* LEFT PANEL */

.warm-shell-overview .warm-shell-details {
    background: #f8fbff;
    border: 1px solid #e3ecfb;
    border-radius: 18px;
}

.warm-shell-overview .warm-shell-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 6px;
    border-bottom: 1px dashed #d9e4fb;
}

.warm-shell-overview .warm-shell-line:last-child {
    border-bottom: none;
}

.warm-shell-overview .warm-shell-line .label {
    font-weight: 600;
    color: #48566d;
}

.warm-shell-overview .warm-shell-line .value {
    font-weight: 700;
    color: #0b5ed7;
}


/* RIGHT IMAGE PANEL */

.warm-shell-overview {
    padding: 80px 0px;
    background-color: #d9d8d8;
}

.warm-shell-overview .warm-shell-image-panel {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 18px;
    overflow: hidden;
    background: url('../Images/warmshell/working-area.webp') center/cover no-repeat;
}

.warm-shell-overview .plug-n-play {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 18px;
    overflow: hidden;
    background: url('../Images/PlugNPlay/Plug-n-play.webp') center/cover no-repeat;
}


/* overlay */

.warm-shell-overview .warm-shell-image-panel .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .75));
}


/* content over image */

.warm-shell-overview .warm-shell-image-panel .warm-shell-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 24px;
    padding-left: 50px;
}

.warm-shell-overview .warm-shell-image-panel .warm-shell-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.warm-shell-overview .warm-shell-image-panel .warm-shell-content ul li {
    padding: 5px 0;
}

.plugplay-diagonal {
    position: relative;
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* angled overlay */

.plugplay-diagonal .plugplay-diagonal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    clip-path: polygon(0 0, 75% 0, 60% 100%, 0% 100%);
}


/* content */

.plugplay-diagonal .plugplay-diagonal-content {
    position: relative;
    max-width: 720px;
    color: #ffffff;
}

.plugplay-diagonal .plugplay-diagonal-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 22px;
}

.plugplay-diagonal .plugplay-diagonal-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
    color: #ffffff;
}

.plugplay-diagonal .plugplay-diagonal-content p strong {
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.facilities-icons-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f4f7fb, #eaf0f7);
}


/* title */

.facilities-icons-section .icons-header {
    text-align: center;
    margin-bottom: 45px;
}

.facilities-icons-section .icons-header h2 {
    font-size: 34px;
    font-weight: 800;
}

.facilities-icons-section .icons-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #555;
}


/* cards */

.facilities-icons-section .icons-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e4e8ef;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .06);
    transition: .3s ease;
    height: 100%;
}

.facilities-icons-section .icons-card:hover {
    transform: translateY(-6px);
}


/* image part */

.facilities-icons-section .icons-img {
    width: 100%;
    height: 110px;
    background: #f2f5fc;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* .facilities-icons-section .icons-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */


/* content */

.facilities-icons-section .icons-body {
    padding: 60px 18px 22px;
}

.facilities-icons-section .icons-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.facilities-icons-section .icons-title-row h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.facilities-icons-section .icons-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 50px;
}

.facilities-icons-section .icons-desc {
    font-size: 13px;
    color: #444;
    margin: 0;
}

.amenities-section {
    background-color: #f8f8f8;
    padding: 3em 5em
}

.facilities-section {
    padding: 50px 0;
    background: #fff;
}

.facilities-section .facilities-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.facilities-section .facility-item {
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    padding: 25px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.facilities-section .facility-item img {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) hue-rotate(70deg);
    transition: filter 0.3s ease;
}

.facilities-section .facility-item h4 {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin: 0;
}


/* Floor Plans */

.warm-shell-section {
    background: #f8fafc;
}

.warm-shell-section .warm-shell-wrapper {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.05);
}

.warm-shell-section .warm-shell-row {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 30px;
    align-items: center;
}


/* IMAGE */

.warm-shell-section .warm-shell-image-box {
    position: relative;
}

.warm-shell-section .warm-shell-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.08);
    transition: .3s ease;
}

.warm-shell-section .warm-shell-image:hover {
    transform: scale(1.02);
}


/* CONTENT */

.warm-shell-section .warm-shell-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e9f3ff;
    color: #1d3ab5;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.warm-shell-section .warm-shell-title {
    margin: 12px 0 6px;
    font-size: 28px;
    font-weight: 800;
    color: #0b1935;
}

.warm-shell-section .warm-shell-subtitle {
    color: #6b7280;
    margin-bottom: 18px;
}


/* GRID */

.warm-shell-section .warm-shell-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.warm-shell-section .warm-shell-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff;
    transition: .25s;
}

.warm-shell-section .warm-shell-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.warm-shell-section .warm-shell-card-title {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.warm-shell-section .warm-shell-card-value {
    font-size: 18px;
    font-weight: 700;
    color: #0b1935;
}


/* Gallery  */

.contact-block {
    padding: 70px 0;
    background: #f9fafb;
}

.contact-block .contact-block-container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.contact-block .contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    transition: .25s ease;
}

.contact-block .contact-card:hover {
    transform: translateY(-6px);
}


/* ICON */

.contact-block .contact-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.contact-block .purple-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.contact-block .green-icon {
    background: linear-gradient(135deg, #059669, #34d399);
}


/* TEXT */

.contact-block .contact-card-title {
    margin: 6px 0 4px;
    font-weight: 800;
}

.contact-block .contact-card-text {
    margin: 0;
    color: #475569;
}

.contact-block .contact-card-text a {
    color: #2563eb;
    text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-block .contact-block-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .contact-block .contact-block-container {
        grid-template-columns: 1fr;
    }
}


/* Responsive */

@media (max-width: 992px) {
    .warm-shell-section .warm-shell-row {
        grid-template-columns: 1fr;
    }
    .warm-shell-section .warm-shell-image {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .warm-shell-section .warm-shell-grid {
        grid-template-columns: 1fr;
    }
    .warm-shell-section .warm-shell-wrapper {
        padding: 22px;
    }
}


/* Responsive */

@media (max-width: 992px) {
    .facilities-section .facilities-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .facilities-section {
        padding: 50px 12px;
        background: #fff;
    }
    .facilities-section .facilities-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* @media (max-width: 480px) {
    .facilities-section .facilities-container {
        grid-template-columns: 1fr;
    }
} */


/* ===========================
   RESPONSIVE
=========================== */


/* responsive */

@media (max-width: 768px) {
    .plugplay-diagonal {
        padding: 90px 0;
    }
    .plugplay-diagonal .plugplay-diagonal-overlay {
        clip-path: none;
        background: rgba(0, 0, 0, 0.7);
    }
    .plugplay-diagonal .plugplay-diagonal-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .prime-location .prime-location-grid {
        text-align: start;
    }
    .prime-location .prime-location-list {
        align-items: start;
    }
    .prime-location .prime-location-item {
        width: 100%;
    }
    .our-mission-area {
        padding: 30px 0 20px;
    }
    .mission-text-after:after {
        display: none;
    }
    .why-choose-section .why-choose-overlay {
        background: rgba(0, 0, 0, 0.55);
        padding: 60px 0;
    }
    .single-gallery-box {
        padding-left: 0px !important;
    }
}

@media (max-width: 992px) {
    .why-choose-section .why-title {
        font-size: 2rem;
    }
    .why-choose-section .why-card {
        padding: 16px;
    }
}


/* big phones */

@media (max-width: 768px) {
    .why-choose-section {
        padding: 0;
    }
    .why-choose-section .why-card {
        align-items: center;
    }
    .why-choose-section .why-card-image img {
        width: 60px;
        height: 60px;
    }
}


/* small phones */

@media (max-width: 576px) {
    .why-choose-section .why-title {
        font-size: 1.7rem;
    }
    .why-choose-section .why-card {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .why-choose-section .why-card-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .why-choose-section .why-card-image {
        width: 65px;
        height: 65px;
    }
}


/* Responsive */

@media (max-width: 767px) {
    .vt-water-item {
        padding: 15px;
    }
    .vt-water-item::before {
        font-size: 55px;
        right: 14px;
    }
}

@media (max-width: 600px) {
    .vtp-faq-section {
        padding: 20px 15px;
    }
    .vtp-faq-title {
        font-size: 20px;
    }
}


/* Responsive fix */

@media(max-width: 767px) {
    .banner-text-section {
        position: relative;
        margin-top: 20px;
        /* z-index: 100; */
    }
    .banner-text-section .banner-text-section-content h1 {
        color: #25377f;
        margin-bottom: 0;
        font-size: 30px;
        font-weight: 600;
        /* text-shadow: 4px 4px 4px #25377f; */
    }
    .item-bg1::before,
    .item-bg2::before,
    .item-bg3::before,
    .item-bg4::before,
    .item-bg5::before,
    .item-bg6::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1);
        opacity: 1;
        transition: transform 10s ease;
    }
    .banner-text-section .banner-text-section-content h1 br {
        display: none;
    }
    .banner-text-section .banner-text-section-content .sub-title {
        text-transform: uppercase;
        display: block;
        color: #000000;
        letter-spacing: 3px;
        margin-bottom: 8px;
        font-size: 16px;
        text-shadow: unset;
    }
    .about-area {
        margin-top: 50px;
        padding-bottom: 70px;
    }
    .amenity-cell {
        padding: 30px 10px;
        width: 100%;
    }
    .amenity-cell i {
        font-size: 30px;
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        /* adjust spacing if needed */
    }
    .amenity-cell-last {
        display: none !important;
    }
}